home *** CD-ROM | disk | FTP | other *** search
/ Programming Sound Cards / Programming Sound Cards.iso / sound_48 / multi2.exe / COMMANDS.LIB < prev    next >
Text File  |  1993-01-11  |  5KB  |  121 lines

  1.  COMMAND NAME   DESCRIPTION                           EXAMPLES
  2.  ─────────────────────────────────────────────────────────────────────────────
  3.  SAY            Will output speech, music and sound   say hello
  4.                 effects thru the pc speaker. You can  say bye comeagain                 have up to 20 sound files in one say
  5.                 have upto 20 command.
  6.  
  7.  SAY-SB         SOUND BLASTER SAY will output Sound   say-sb mm1.voc
  8.                 Blaster VOC files. You can have upto
  9.                 20 VOC files in one say-sb command.
  10.  
  11.  SHOW           Will display a graphic image file.    show blueyes.gif
  12.                 Supports pcx, gif, pic, tif or tga.   show menu.pcx
  13.                 Refer to the Image Processor for
  14.                 more show information.
  15.  
  16.  SHOW-WIN       Will display a graphic image file     show-win house1.gif
  17.                 with a scroll down effect. Supports
  18.                 GIF and PCX only.
  19.  
  20.  SHOW-WIN  X Y  Will display a graphic image file     show-win mouth.gif 76 142
  21.                 as an overlay, window or on top of    show-win found1.gif 0 84
  22.                 a graphic image.
  23.  
  24.                 Usage: window filename Xloc Yloc
  25.  DELAY          Will wait for 1 second.               delay
  26.  
  27.  DELAY x        Will wait for x seconds.              delay 3
  28.                 30 seconds is the maximum.
  29.  
  30.  DELAY-KB xxx   Will wait for xxx seconds or wait     delay-kb 120
  31.                 until the user presses a keyboard
  32.                 key. 300 seconds is the maximum.
  33.                 Use this to create a self running
  34.                 demo.
  35.  
  36.  KEY            Will wait for the user to press       key
  37.                 any keyboard key.
  38.  
  39.  KEY 123Q       Will wait for the user to press       key 123456789Q
  40.                 a menu key(123 or Q) and returns
  41.                 the key pressed. Use this to create   key YN
  42.                 a menu or ask a question. Refer to
  43.                 manual.exe for more information.      key ABC
  44.  
  45.  SCROLL UP      Will scroll up the graphic screen.    scroll up
  46.  
  47.  SCROLL DOWN    Will scroll down the graphic screen.  scroll down
  48.                 This is a soft scroll effect.
  49.  
  50.  ZOOM IN        Will zoom in the graphic screen.      zoom in
  51.  
  52.  ZOOM OUT       Will zoom out the graphic screen.     zoom out
  53.                 This is a fast zoom effect.
  54.  
  55.  ROTATE         Will rotate the graphic screen 180.   rotate      (VGA ONLY)
  56.  
  57.  ROTATE x       Rotates the graphic screen x times.   rotate 20
  58.  
  59.  NEGATIVE       Will invert the graphic screen.       negative
  60.  
  61.  NEGATIVE x     Inverts the graphic screen x times.   negative 10
  62.  
  63.  FADE           Will fade the graphic screens.       fade
  64.                 This is a 5 step fade sequence.
  65.  
  66.  GTEXT          Displays a text line on top of a      gtext "JUPITER TAKES ALMOST" 21 20 8 160 260
  67.                 graphic image in 3 point sizes        gtext "12 YEARS TO REVOLVE" 22 20 8 160 260
  68.                 and any color.
  69.  
  70.                 Usage: gtext "your text" row column size fcolor bcolor
  71.                        size is font size of 8, 14 or 16
  72.                        fcolor is font color number 0-255 for VGA
  73.                        bcolor is background color number 0-255 for VGA
  74.                        A bcolor greater then 255 will appear transparent.
  75.  
  76.                        The parameter, "row," must be less than the vertical
  77.                        resolution of the video mode divided by the font point
  78.                size. Example: 200 divided by 8 equals 25 rows.
  79.  
  80.  PRINTSCR       Will print the graphic screen to       printscr
  81.                 a dot matrix printer(high quality).
  82.  
  83.  TEXTMODE       Will return the graphic display to     text mode
  84.                 text mode and clears the screen.
  85.  
  86.  CLR-TEXT       Will clear the text screen(fancy).     clr-text
  87.  
  88.  
  89.  
  90.  FOR MORE INFORMATION ON THE COMMANDS AND BATCH FILES REFER TO MANUAL.EXE
  91.  ────────────────────────────────────────────────────────────────────────
  92.  
  93. * THERE ARE MORE ADVANCED COMMANDS ON THE REGISTERED VERSION OF MULTIMEDIA 1.
  94.  
  95.  
  96.  OTHER BATCH COMMANDS AVAILABLE THRU DOS
  97.  ─────────────────────────────────────────────────────────────────────────────
  98.  
  99.  ECHO OFF       Turns off the commands echo. this      echo off
  100.                 will not echo the commands to the      echo on
  101.                 screen.
  102.  ECHO text      Will echo text to screen.              echo HELLO WELCOME TO MY PROGRAM
  103.  
  104.  CLS            Will clear the text screen.            cls
  105.  
  106.  CALL           Calls one batch file from another      call example1.bat
  107.                 without ending itself.
  108.  
  109.  GOTO           Process commands starting with the     goto menu_again
  110.                 line after the specified label.
  111.                 :menu_again is a label example.
  112.  
  113.  IF             Performs a command if a condition      if errorlevel 1 goto menu1
  114.                 is met. This is used in conjuction     if errorlevel 2 goto menu2
  115.                 with the KEY command, to ask the
  116.                 user a question and read the response.
  117.                 Refer to example4.bat for more info..
  118.  
  119.  
  120.  FOR MORE INFORMATION ON BATCH FILES REFER TO YOUR DOS MANUAL.
  121.  ─────────────────────────────────────────────────────────────